home *** CD-ROM | disk | FTP | other *** search
- package com.ibm.uvm.abt.edit;
-
- import java.beans.PropertyEditorSupport;
- import java.util.ResourceBundle;
- import sun.beans.editors.LongEditor;
-
- public class JavaLangLongEditor extends LongEditor {
- private static ResourceBundle resabtedit = ResourceBundle.getBundle("com/ibm/uvm/abt/edit/abtedit");
-
- public String getJavaInitializationString() {
- return "new java.lang.Long(" + ((PropertyEditorSupport)this).getValue() + "L" + ")";
- }
- }
-